MAYBE 8.722 H-Termination proof of /home/matraf/haskell/eval_FullyBlown_Fast/empty.hs
H-Termination of the given Haskell-Program with start terms could not be shown:



HASKELL
  ↳ IFR

mainModule Main
  ((toRational :: Real a => a  ->  Ratio Integer) :: Real a => a  ->  Ratio Integer)

module Main where
  import qualified Prelude



If Reductions:
The following If expression
if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero

is transformed to
primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y))
primDivNatS0 x y False = Zero

The following If expression
if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x

is transformed to
primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y)
primModNatS0 x y False = Succ x



↳ HASKELL
  ↳ IFR
HASKELL
      ↳ BR

mainModule Main
  ((toRational :: Real a => a  ->  Ratio Integer) :: Real a => a  ->  Ratio Integer)

module Main where
  import qualified Prelude



Replaced joker patterns by fresh variables and removed binding patterns.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
HASKELL
          ↳ COR

mainModule Main
  ((toRational :: Real a => a  ->  Ratio Integer) :: Real a => a  ->  Ratio Integer)

module Main where
  import qualified Prelude



Cond Reductions:
The following Function with conditions
gcd' x 0 = x
gcd' x y = gcd' y (x `rem` y)

is transformed to
gcd' x xz = gcd'2 x xz
gcd' x y = gcd'0 x y

gcd'0 x y = gcd' y (x `rem` y)

gcd'1 True x xz = x
gcd'1 yu yv yw = gcd'0 yv yw

gcd'2 x xz = gcd'1 (xz == 0) x xz
gcd'2 yx yy = gcd'0 yx yy

The following Function with conditions
gcd 0 0 = error []
gcd x y = 
gcd' (abs x) (abs y)
where 
gcd' x 0 = x
gcd' x y = gcd' y (x `rem` y)

is transformed to
gcd yz zu = gcd3 yz zu
gcd x y = gcd0 x y

gcd0 x y = 
gcd' (abs x) (abs y)
where 
gcd' x xz = gcd'2 x xz
gcd' x y = gcd'0 x y
gcd'0 x y = gcd' y (x `rem` y)
gcd'1 True x xz = x
gcd'1 yu yv yw = gcd'0 yv yw
gcd'2 x xz = gcd'1 (xz == 0) x xz
gcd'2 yx yy = gcd'0 yx yy

gcd1 True yz zu = error []
gcd1 zv zw zx = gcd0 zw zx

gcd2 True yz zu = gcd1 (zu == 0) yz zu
gcd2 zy zz vuu = gcd0 zz vuu

gcd3 yz zu = gcd2 (yz == 0) yz zu
gcd3 vuv vuw = gcd0 vuv vuw

The following Function with conditions
absReal x
 | x >= 0
 = x
 | otherwise
 = `negate` x

is transformed to
absReal x = absReal2 x

absReal1 x True = x
absReal1 x False = absReal0 x otherwise

absReal0 x True = `negate` x

absReal2 x = absReal1 x (x >= 0)

The following Function with conditions
undefined 
 | False
 = undefined

is transformed to
undefined  = undefined1

undefined0 True = undefined

undefined1  = undefined0 False

The following Function with conditions
reduce x y
 | y == 0
 = error []
 | otherwise
 = x `quot` d :% (y `quot` d)
where 
d  = gcd x y

is transformed to
reduce x y = reduce2 x y

reduce2 x y = 
reduce1 x y (y == 0)
where 
d  = gcd x y
reduce0 x y True = x `quot` d :% (y `quot` d)
reduce1 x y True = error []
reduce1 x y False = reduce0 x y otherwise

The following Function with conditions
signumReal x
 | x == 0
 = 0
 | x > 0
 = 1
 | otherwise
 = -1

is transformed to
signumReal x = signumReal3 x

signumReal2 x True = 0
signumReal2 x False = signumReal1 x (x > 0)

signumReal1 x True = 1
signumReal1 x False = signumReal0 x otherwise

signumReal0 x True = -1

signumReal3 x = signumReal2 x (x == 0)



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
HASKELL
              ↳ LetRed

mainModule Main
  ((toRational :: Real a => a  ->  Ratio Integer) :: Real a => a  ->  Ratio Integer)

module Main where
  import qualified Prelude



Let/Where Reductions:
The bindings of the following Let/Where expression
reduce1 x y (y == 0)
where 
d  = gcd x y
reduce0 x y True = x `quot` d :% (y `quot` d)
reduce1 x y True = error []
reduce1 x y False = reduce0 x y otherwise

are unpacked to the following functions on top level
reduce2D vux vuy = gcd vux vuy

reduce2Reduce0 vux vuy x y True = x `quot` reduce2D vux vuy :% (y `quot` reduce2D vux vuy)

reduce2Reduce1 vux vuy x y True = error []
reduce2Reduce1 vux vuy x y False = reduce2Reduce0 vux vuy x y otherwise

The bindings of the following Let/Where expression
gcd' (abs x) (abs y)
where 
gcd' x xz = gcd'2 x xz
gcd' x y = gcd'0 x y
gcd'0 x y = gcd' y (x `rem` y)
gcd'1 True x xz = x
gcd'1 yu yv yw = gcd'0 yv yw
gcd'2 x xz = gcd'1 (xz == 0) x xz
gcd'2 yx yy = gcd'0 yx yy

are unpacked to the following functions on top level
gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y)

gcd0Gcd'2 x xz = gcd0Gcd'1 (xz == 0) x xz
gcd0Gcd'2 yx yy = gcd0Gcd'0 yx yy

gcd0Gcd'1 True x xz = x
gcd0Gcd'1 yu yv yw = gcd0Gcd'0 yv yw

gcd0Gcd' x xz = gcd0Gcd'2 x xz
gcd0Gcd' x y = gcd0Gcd'0 x y



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
HASKELL
                  ↳ NumRed

mainModule Main
  ((toRational :: Real a => a  ->  Ratio Integer) :: Real a => a  ->  Ratio Integer)

module Main where
  import qualified Prelude



Num Reduction: All numbers are transformed to thier corresponding representation with Pos, Neg, Succ and Zero.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
HASKELL
                      ↳ Narrow
                      ↳ Narrow

mainModule Main
  (toRational :: Real a => a  ->  Ratio Integer)

module Main where
  import qualified Prelude



Haskell To QDPs


↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
QDP
                            ↳ QDPSizeChangeProof
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primMulNat(Succ(vuz30000)) → new_primMulNat(vuz30000)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
QDP
                            ↳ QDPSizeChangeProof
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primMinusNatS(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS(vuz13000, vuz1310)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
QDP
                            ↳ DependencyGraphProof
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Zero, Zero) → new_primDivNatS00(vuz183, vuz184)
new_primDivNatS(Succ(Succ(vuz7200)), Succ(vuz31000)) → new_primDivNatS0(vuz7200, vuz31000, vuz7200, vuz31000)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)
new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))
new_primDivNatS(Succ(Succ(vuz7200)), Zero) → new_primDivNatS(new_primMinusNatS0(vuz7200), Zero)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))
new_primDivNatS(Succ(Zero), Zero) → new_primDivNatS(new_primMinusNatS1, Zero)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)
new_primMinusNatS1Zero
new_primMinusNatS0(vuz7200) → Succ(vuz7200)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS1
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))
new_primMinusNatS0(x0)

We have to consider all minimal (P,Q,R)-chains.
The approximation of the Dependency Graph [15,17,22] contains 2 SCCs with 1 less node.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
QDP
                                  ↳ UsableRulesProof
                                ↳ QDP
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS(Succ(Succ(vuz7200)), Zero) → new_primDivNatS(new_primMinusNatS0(vuz7200), Zero)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)
new_primMinusNatS1Zero
new_primMinusNatS0(vuz7200) → Succ(vuz7200)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS1
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))
new_primMinusNatS0(x0)

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                  ↳ UsableRulesProof
QDP
                                      ↳ QReductionProof
                                ↳ QDP
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS(Succ(Succ(vuz7200)), Zero) → new_primDivNatS(new_primMinusNatS0(vuz7200), Zero)

The TRS R consists of the following rules:

new_primMinusNatS0(vuz7200) → Succ(vuz7200)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS1
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))
new_primMinusNatS0(x0)

We have to consider all minimal (P,Q,R)-chains.
We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS1
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
QDP
                                          ↳ RuleRemovalProof
                                ↳ QDP
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS(Succ(Succ(vuz7200)), Zero) → new_primDivNatS(new_primMinusNatS0(vuz7200), Zero)

The TRS R consists of the following rules:

new_primMinusNatS0(vuz7200) → Succ(vuz7200)

The set Q consists of the following terms:

new_primMinusNatS0(x0)

We have to consider all minimal (P,Q,R)-chains.
By using the rule removal processor [15] with the following polynomial ordering [25], at least one Dependency Pair or term rewrite system rule of this QDP problem can be strictly oriented.
Strictly oriented dependency pairs:

new_primDivNatS(Succ(Succ(vuz7200)), Zero) → new_primDivNatS(new_primMinusNatS0(vuz7200), Zero)

Strictly oriented rules of the TRS R:

new_primMinusNatS0(vuz7200) → Succ(vuz7200)

Used ordering: POLO with Polynomial interpretation [25]:

POL(Succ(x1)) = 1 + 2·x1   
POL(Zero) = 0   
POL(new_primDivNatS(x1, x2)) = x1 + x2   
POL(new_primMinusNatS0(x1)) = 2 + 2·x1   



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
                                        ↳ QDP
                                          ↳ RuleRemovalProof
QDP
                                              ↳ PisEmptyProof
                                ↳ QDP
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
P is empty.
R is empty.
The set Q consists of the following terms:

new_primMinusNatS0(x0)

We have to consider all minimal (P,Q,R)-chains.
The TRS P is empty. Hence, there is no (P,Q,R) chain.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
QDP
                                  ↳ UsableRulesProof
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Zero, Zero) → new_primDivNatS00(vuz183, vuz184)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)
new_primDivNatS(Succ(Succ(vuz7200)), Succ(vuz31000)) → new_primDivNatS0(vuz7200, vuz31000, vuz7200, vuz31000)
new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)
new_primMinusNatS1Zero
new_primMinusNatS0(vuz7200) → Succ(vuz7200)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS1
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))
new_primMinusNatS0(x0)

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
QDP
                                      ↳ QReductionProof
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Zero, Zero) → new_primDivNatS00(vuz183, vuz184)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)
new_primDivNatS(Succ(Succ(vuz7200)), Succ(vuz31000)) → new_primDivNatS0(vuz7200, vuz31000, vuz7200, vuz31000)
new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS1
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))
new_primMinusNatS0(x0)

We have to consider all minimal (P,Q,R)-chains.
We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.

new_primMinusNatS1
new_primMinusNatS0(x0)



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
QDP
                                          ↳ Rewriting
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Zero, Zero) → new_primDivNatS00(vuz183, vuz184)
new_primDivNatS(Succ(Succ(vuz7200)), Succ(vuz31000)) → new_primDivNatS0(vuz7200, vuz31000, vuz7200, vuz31000)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)
new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
By rewriting [15] the rule new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184)) at position [0] we obtained the following new rules:

new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(vuz183, vuz184), Succ(vuz184))



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
                                        ↳ QDP
                                          ↳ Rewriting
QDP
                                              ↳ Rewriting
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Zero, Zero) → new_primDivNatS00(vuz183, vuz184)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)
new_primDivNatS(Succ(Succ(vuz7200)), Succ(vuz31000)) → new_primDivNatS0(vuz7200, vuz31000, vuz7200, vuz31000)
new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(vuz183, vuz184), Succ(vuz184))
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
By rewriting [15] the rule new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(Succ(vuz183), Succ(vuz184)), Succ(vuz184)) at position [0] we obtained the following new rules:

new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(vuz183, vuz184), Succ(vuz184))



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
                                        ↳ QDP
                                          ↳ Rewriting
                                            ↳ QDP
                                              ↳ Rewriting
QDP
                                                  ↳ QDPOrderProof
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Zero, Zero) → new_primDivNatS00(vuz183, vuz184)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(vuz183, vuz184), Succ(vuz184))
new_primDivNatS(Succ(Succ(vuz7200)), Succ(vuz31000)) → new_primDivNatS0(vuz7200, vuz31000, vuz7200, vuz31000)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)
new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(vuz183, vuz184), Succ(vuz184))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
We use the reduction pair processor [15].


The following pairs can be oriented strictly and are deleted.


new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Zero) → new_primDivNatS(new_primMinusNatS2(vuz183, vuz184), Succ(vuz184))
new_primDivNatS(Succ(Succ(vuz7200)), Succ(vuz31000)) → new_primDivNatS0(vuz7200, vuz31000, vuz7200, vuz31000)
new_primDivNatS00(vuz183, vuz184) → new_primDivNatS(new_primMinusNatS2(vuz183, vuz184), Succ(vuz184))
The remaining pairs can at least be oriented weakly.

new_primDivNatS0(vuz183, vuz184, Zero, Zero) → new_primDivNatS00(vuz183, vuz184)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)
Used ordering: Polynomial interpretation [25]:

POL(Succ(x1)) = 1 + x1   
POL(Zero) = 0   
POL(new_primDivNatS(x1, x2)) = x1   
POL(new_primDivNatS0(x1, x2, x3, x4)) = 1 + x1   
POL(new_primDivNatS00(x1, x2)) = 1 + x1   
POL(new_primMinusNatS2(x1, x2)) = x1   

The following usable rules [17] were oriented:

new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
                                        ↳ QDP
                                          ↳ Rewriting
                                            ↳ QDP
                                              ↳ Rewriting
                                                ↳ QDP
                                                  ↳ QDPOrderProof
QDP
                                                      ↳ DependencyGraphProof
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Zero, Zero) → new_primDivNatS00(vuz183, vuz184)
new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
The approximation of the Dependency Graph [15,17,22] contains 1 SCC with 1 less node.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
                                        ↳ QDP
                                          ↳ Rewriting
                                            ↳ QDP
                                              ↳ Rewriting
                                                ↳ QDP
                                                  ↳ QDPOrderProof
                                                    ↳ QDP
                                                      ↳ DependencyGraphProof
QDP
                                                          ↳ UsableRulesProof
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
                                        ↳ QDP
                                          ↳ Rewriting
                                            ↳ QDP
                                              ↳ Rewriting
                                                ↳ QDP
                                                  ↳ QDPOrderProof
                                                    ↳ QDP
                                                      ↳ DependencyGraphProof
                                                        ↳ QDP
                                                          ↳ UsableRulesProof
QDP
                                                              ↳ QReductionProof
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)

R is empty.
The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
                                        ↳ QDP
                                          ↳ Rewriting
                                            ↳ QDP
                                              ↳ Rewriting
                                                ↳ QDP
                                                  ↳ QDPOrderProof
                                                    ↳ QDP
                                                      ↳ DependencyGraphProof
                                                        ↳ QDP
                                                          ↳ UsableRulesProof
                                                            ↳ QDP
                                                              ↳ QReductionProof
QDP
                                                                  ↳ QDPSizeChangeProof
                          ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_primDivNatS0(vuz183, vuz184, Succ(vuz1850), Succ(vuz1860)) → new_primDivNatS0(vuz183, vuz184, vuz1850, vuz1860)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
QDP
                            ↳ DependencyGraphProof
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot0(vuz163, Succ(Succ(vuz17300)), Succ(vuz1650), vuz172) → new_quot(vuz163, vuz17300, Succ(vuz1650), vuz17300, vuz1650)
new_quot0(vuz163, Succ(Succ(vuz17300)), Zero, vuz172) → new_quot0(vuz163, new_primMinusNatS2(Succ(vuz17300), Zero), Zero, new_primMinusNatS2(Succ(vuz17300), Zero))
new_quot0(vuz163, Succ(Zero), Zero, vuz172) → new_quot0(vuz163, new_primMinusNatS2(Zero, Zero), Zero, new_primMinusNatS2(Zero, Zero))
new_quot(vuz216, vuz217, vuz218, Zero, Succ(vuz2200)) → new_quot1(vuz216, vuz218, Succ(vuz217))
new_quot2(vuz216, vuz217, vuz218) → new_quot0(vuz216, new_primMinusNatS2(Succ(vuz217), vuz218), vuz218, new_primMinusNatS2(Succ(vuz217), vuz218))
new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Succ(vuz2200)) → new_quot(vuz216, vuz217, vuz218, vuz2190, vuz2200)
new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Zero) → new_quot0(vuz216, new_primMinusNatS2(Succ(vuz217), vuz218), vuz218, new_primMinusNatS2(Succ(vuz217), vuz218))
new_quot1(vuz81, vuz820, vuz3100) → new_quot3(vuz81, vuz820, vuz3100)
new_quot0(vuz163, Succ(Zero), Succ(vuz1650), vuz172) → new_quot1(vuz163, Succ(vuz1650), Zero)
new_quot3(vuz81, vuz820, vuz3100) → new_quot3(vuz81, vuz820, vuz3100)
new_quot(vuz216, vuz217, vuz218, Zero, Zero) → new_quot2(vuz216, vuz217, vuz218)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
The approximation of the Dependency Graph [15,17,22] contains 3 SCCs with 4 less nodes.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
QDP
                                  ↳ UsableRulesProof
                                ↳ QDP
                                ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot3(vuz81, vuz820, vuz3100) → new_quot3(vuz81, vuz820, vuz3100)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                  ↳ UsableRulesProof
QDP
                                      ↳ QReductionProof
                                ↳ QDP
                                ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot3(vuz81, vuz820, vuz3100) → new_quot3(vuz81, vuz820, vuz3100)

R is empty.
The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
QDP
                                          ↳ NonTerminationProof
                                ↳ QDP
                                ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot3(vuz81, vuz820, vuz3100) → new_quot3(vuz81, vuz820, vuz3100)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.
We used the non-termination processor [17] to show that the DP problem is infinite.
Found a loop by semiunifying a rule from P directly.

The TRS P consists of the following rules:

new_quot3(vuz81, vuz820, vuz3100) → new_quot3(vuz81, vuz820, vuz3100)

The TRS R consists of the following rules:none


s = new_quot3(vuz81, vuz820, vuz3100) evaluates to t =new_quot3(vuz81, vuz820, vuz3100)

Thus s starts an infinite chain as s semiunifies with t with the following substitutions:




Rewriting sequence

The DP semiunifies directly so there is only one rewrite step from new_quot3(vuz81, vuz820, vuz3100) to new_quot3(vuz81, vuz820, vuz3100).





↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
QDP
                                  ↳ UsableRulesProof
                                ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot0(vuz163, Succ(Succ(vuz17300)), Zero, vuz172) → new_quot0(vuz163, new_primMinusNatS2(Succ(vuz17300), Zero), Zero, new_primMinusNatS2(Succ(vuz17300), Zero))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
QDP
                                      ↳ RuleRemovalProof
                                ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot0(vuz163, Succ(Succ(vuz17300)), Zero, vuz172) → new_quot0(vuz163, new_primMinusNatS2(Succ(vuz17300), Zero), Zero, new_primMinusNatS2(Succ(vuz17300), Zero))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
By using the rule removal processor [15] with the following polynomial ordering [25], at least one Dependency Pair or term rewrite system rule of this QDP problem can be strictly oriented.
Strictly oriented dependency pairs:

new_quot0(vuz163, Succ(Succ(vuz17300)), Zero, vuz172) → new_quot0(vuz163, new_primMinusNatS2(Succ(vuz17300), Zero), Zero, new_primMinusNatS2(Succ(vuz17300), Zero))


Used ordering: POLO with Polynomial interpretation [25]:

POL(Succ(x1)) = 1 + 2·x1   
POL(Zero) = 0   
POL(new_primMinusNatS2(x1, x2)) = x1 + 2·x2   
POL(new_quot0(x1, x2, x3, x4)) = x1 + x2 + x3 + x4   



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ RuleRemovalProof
QDP
                                          ↳ PisEmptyProof
                                ↳ QDP
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
P is empty.
The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
The TRS P is empty. Hence, there is no (P,Q,R) chain.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
QDP
                                  ↳ QDPOrderProof
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot0(vuz163, Succ(Succ(vuz17300)), Succ(vuz1650), vuz172) → new_quot(vuz163, vuz17300, Succ(vuz1650), vuz17300, vuz1650)
new_quot2(vuz216, vuz217, vuz218) → new_quot0(vuz216, new_primMinusNatS2(Succ(vuz217), vuz218), vuz218, new_primMinusNatS2(Succ(vuz217), vuz218))
new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Succ(vuz2200)) → new_quot(vuz216, vuz217, vuz218, vuz2190, vuz2200)
new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Zero) → new_quot0(vuz216, new_primMinusNatS2(Succ(vuz217), vuz218), vuz218, new_primMinusNatS2(Succ(vuz217), vuz218))
new_quot(vuz216, vuz217, vuz218, Zero, Zero) → new_quot2(vuz216, vuz217, vuz218)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
We use the reduction pair processor [15].


The following pairs can be oriented strictly and are deleted.


new_quot0(vuz163, Succ(Succ(vuz17300)), Succ(vuz1650), vuz172) → new_quot(vuz163, vuz17300, Succ(vuz1650), vuz17300, vuz1650)
The remaining pairs can at least be oriented weakly.

new_quot2(vuz216, vuz217, vuz218) → new_quot0(vuz216, new_primMinusNatS2(Succ(vuz217), vuz218), vuz218, new_primMinusNatS2(Succ(vuz217), vuz218))
new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Succ(vuz2200)) → new_quot(vuz216, vuz217, vuz218, vuz2190, vuz2200)
new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Zero) → new_quot0(vuz216, new_primMinusNatS2(Succ(vuz217), vuz218), vuz218, new_primMinusNatS2(Succ(vuz217), vuz218))
new_quot(vuz216, vuz217, vuz218, Zero, Zero) → new_quot2(vuz216, vuz217, vuz218)
Used ordering: Polynomial interpretation [25]:

POL(Succ(x1)) = 1 + x1   
POL(Zero) = 0   
POL(new_primMinusNatS2(x1, x2)) = x1   
POL(new_quot(x1, x2, x3, x4, x5)) = 1 + x2 + x3   
POL(new_quot0(x1, x2, x3, x4)) = x2 + x3   
POL(new_quot2(x1, x2, x3)) = 1 + x2 + x3   

The following usable rules [17] were oriented:

new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Zero) → Zero



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                ↳ QDP
                                  ↳ QDPOrderProof
QDP
                                      ↳ DependencyGraphProof
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot2(vuz216, vuz217, vuz218) → new_quot0(vuz216, new_primMinusNatS2(Succ(vuz217), vuz218), vuz218, new_primMinusNatS2(Succ(vuz217), vuz218))
new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Zero) → new_quot0(vuz216, new_primMinusNatS2(Succ(vuz217), vuz218), vuz218, new_primMinusNatS2(Succ(vuz217), vuz218))
new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Succ(vuz2200)) → new_quot(vuz216, vuz217, vuz218, vuz2190, vuz2200)
new_quot(vuz216, vuz217, vuz218, Zero, Zero) → new_quot2(vuz216, vuz217, vuz218)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
The approximation of the Dependency Graph [15,17,22] contains 1 SCC with 3 less nodes.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                ↳ QDP
                                  ↳ QDPOrderProof
                                    ↳ QDP
                                      ↳ DependencyGraphProof
QDP
                                          ↳ UsableRulesProof
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Succ(vuz2200)) → new_quot(vuz216, vuz217, vuz218, vuz2190, vuz2200)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                ↳ QDP
                                  ↳ QDPOrderProof
                                    ↳ QDP
                                      ↳ DependencyGraphProof
                                        ↳ QDP
                                          ↳ UsableRulesProof
QDP
                                              ↳ QReductionProof
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Succ(vuz2200)) → new_quot(vuz216, vuz217, vuz218, vuz2190, vuz2200)

R is empty.
The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                ↳ QDP
                                  ↳ QDPOrderProof
                                    ↳ QDP
                                      ↳ DependencyGraphProof
                                        ↳ QDP
                                          ↳ UsableRulesProof
                                            ↳ QDP
                                              ↳ QReductionProof
QDP
                                                  ↳ QDPSizeChangeProof
                          ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot(vuz216, vuz217, vuz218, Succ(vuz2190), Succ(vuz2200)) → new_quot(vuz216, vuz217, vuz218, vuz2190, vuz2200)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
QDP
                            ↳ DependencyGraphProof
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot6(vuz149, Succ(Succ(vuz16100)), Succ(vuz1510), vuz160) → new_quot7(vuz149, vuz16100, Succ(vuz1510), vuz16100, vuz1510)
new_quot6(vuz149, Succ(Zero), Zero, vuz160) → new_quot6(vuz149, new_primMinusNatS2(Zero, Zero), Zero, new_primMinusNatS2(Zero, Zero))
new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Succ(vuz2060)) → new_quot7(vuz202, vuz203, vuz204, vuz2050, vuz2060)
new_quot6(vuz149, Succ(Succ(vuz16100)), Zero, vuz160) → new_quot6(vuz149, new_primMinusNatS2(Succ(vuz16100), Zero), Zero, new_primMinusNatS2(Succ(vuz16100), Zero))
new_quot8(vuz72, vuz730, vuz3100) → new_quot5(vuz72, vuz730, vuz3100)
new_quot4(vuz72, vuz730, vuz3100) → new_quot5(vuz72, vuz730, vuz3100)
new_quot7(vuz202, vuz203, vuz204, Zero, Succ(vuz2060)) → new_quot8(vuz202, vuz204, Succ(vuz203))
new_quot7(vuz202, vuz203, vuz204, Zero, Zero) → new_quot9(vuz202, vuz203, vuz204)
new_quot6(vuz149, Succ(Zero), Succ(vuz1510), vuz160) → new_quot8(vuz149, Succ(vuz1510), Zero)
new_quot9(vuz202, vuz203, vuz204) → new_quot6(vuz202, new_primMinusNatS2(Succ(vuz203), vuz204), vuz204, new_primMinusNatS2(Succ(vuz203), vuz204))
new_quot5(vuz72, vuz730, vuz3100) → new_quot5(vuz72, vuz730, vuz3100)
new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Zero) → new_quot6(vuz202, new_primMinusNatS2(Succ(vuz203), vuz204), vuz204, new_primMinusNatS2(Succ(vuz203), vuz204))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
The approximation of the Dependency Graph [15,17,22] contains 3 SCCs with 5 less nodes.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
QDP
                                  ↳ UsableRulesProof
                                ↳ QDP
                                ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot5(vuz72, vuz730, vuz3100) → new_quot5(vuz72, vuz730, vuz3100)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                  ↳ UsableRulesProof
QDP
                                      ↳ QReductionProof
                                ↳ QDP
                                ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot5(vuz72, vuz730, vuz3100) → new_quot5(vuz72, vuz730, vuz3100)

R is empty.
The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ QReductionProof
QDP
                                          ↳ NonTerminationProof
                                ↳ QDP
                                ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot5(vuz72, vuz730, vuz3100) → new_quot5(vuz72, vuz730, vuz3100)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.
We used the non-termination processor [17] to show that the DP problem is infinite.
Found a loop by semiunifying a rule from P directly.

The TRS P consists of the following rules:

new_quot5(vuz72, vuz730, vuz3100) → new_quot5(vuz72, vuz730, vuz3100)

The TRS R consists of the following rules:none


s = new_quot5(vuz72, vuz730, vuz3100) evaluates to t =new_quot5(vuz72, vuz730, vuz3100)

Thus s starts an infinite chain as s semiunifies with t with the following substitutions:




Rewriting sequence

The DP semiunifies directly so there is only one rewrite step from new_quot5(vuz72, vuz730, vuz3100) to new_quot5(vuz72, vuz730, vuz3100).





↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
QDP
                                  ↳ UsableRulesProof
                                ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot6(vuz149, Succ(Succ(vuz16100)), Zero, vuz160) → new_quot6(vuz149, new_primMinusNatS2(Succ(vuz16100), Zero), Zero, new_primMinusNatS2(Succ(vuz16100), Zero))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
QDP
                                      ↳ RuleRemovalProof
                                ↳ QDP
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot6(vuz149, Succ(Succ(vuz16100)), Zero, vuz160) → new_quot6(vuz149, new_primMinusNatS2(Succ(vuz16100), Zero), Zero, new_primMinusNatS2(Succ(vuz16100), Zero))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
By using the rule removal processor [15] with the following polynomial ordering [25], at least one Dependency Pair or term rewrite system rule of this QDP problem can be strictly oriented.
Strictly oriented dependency pairs:

new_quot6(vuz149, Succ(Succ(vuz16100)), Zero, vuz160) → new_quot6(vuz149, new_primMinusNatS2(Succ(vuz16100), Zero), Zero, new_primMinusNatS2(Succ(vuz16100), Zero))


Used ordering: POLO with Polynomial interpretation [25]:

POL(Succ(x1)) = 1 + 2·x1   
POL(Zero) = 0   
POL(new_primMinusNatS2(x1, x2)) = x1 + 2·x2   
POL(new_quot6(x1, x2, x3, x4)) = x1 + x2 + x3 + x4   



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                  ↳ UsableRulesProof
                                    ↳ QDP
                                      ↳ RuleRemovalProof
QDP
                                          ↳ PisEmptyProof
                                ↳ QDP
                      ↳ Narrow

Q DP problem:
P is empty.
The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
The TRS P is empty. Hence, there is no (P,Q,R) chain.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
QDP
                                  ↳ QDPOrderProof
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Succ(vuz2060)) → new_quot7(vuz202, vuz203, vuz204, vuz2050, vuz2060)
new_quot6(vuz149, Succ(Succ(vuz16100)), Succ(vuz1510), vuz160) → new_quot7(vuz149, vuz16100, Succ(vuz1510), vuz16100, vuz1510)
new_quot7(vuz202, vuz203, vuz204, Zero, Zero) → new_quot9(vuz202, vuz203, vuz204)
new_quot9(vuz202, vuz203, vuz204) → new_quot6(vuz202, new_primMinusNatS2(Succ(vuz203), vuz204), vuz204, new_primMinusNatS2(Succ(vuz203), vuz204))
new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Zero) → new_quot6(vuz202, new_primMinusNatS2(Succ(vuz203), vuz204), vuz204, new_primMinusNatS2(Succ(vuz203), vuz204))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
We use the reduction pair processor [15].


The following pairs can be oriented strictly and are deleted.


new_quot6(vuz149, Succ(Succ(vuz16100)), Succ(vuz1510), vuz160) → new_quot7(vuz149, vuz16100, Succ(vuz1510), vuz16100, vuz1510)
The remaining pairs can at least be oriented weakly.

new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Succ(vuz2060)) → new_quot7(vuz202, vuz203, vuz204, vuz2050, vuz2060)
new_quot7(vuz202, vuz203, vuz204, Zero, Zero) → new_quot9(vuz202, vuz203, vuz204)
new_quot9(vuz202, vuz203, vuz204) → new_quot6(vuz202, new_primMinusNatS2(Succ(vuz203), vuz204), vuz204, new_primMinusNatS2(Succ(vuz203), vuz204))
new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Zero) → new_quot6(vuz202, new_primMinusNatS2(Succ(vuz203), vuz204), vuz204, new_primMinusNatS2(Succ(vuz203), vuz204))
Used ordering: Polynomial interpretation [25]:

POL(Succ(x1)) = 1 + x1   
POL(Zero) = 0   
POL(new_primMinusNatS2(x1, x2)) = x1   
POL(new_quot6(x1, x2, x3, x4)) = x2   
POL(new_quot7(x1, x2, x3, x4, x5)) = 1 + x2   
POL(new_quot9(x1, x2, x3)) = 1 + x2   

The following usable rules [17] were oriented:

new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)
new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                ↳ QDP
                                  ↳ QDPOrderProof
QDP
                                      ↳ DependencyGraphProof
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Succ(vuz2060)) → new_quot7(vuz202, vuz203, vuz204, vuz2050, vuz2060)
new_quot7(vuz202, vuz203, vuz204, Zero, Zero) → new_quot9(vuz202, vuz203, vuz204)
new_quot9(vuz202, vuz203, vuz204) → new_quot6(vuz202, new_primMinusNatS2(Succ(vuz203), vuz204), vuz204, new_primMinusNatS2(Succ(vuz203), vuz204))
new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Zero) → new_quot6(vuz202, new_primMinusNatS2(Succ(vuz203), vuz204), vuz204, new_primMinusNatS2(Succ(vuz203), vuz204))

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
The approximation of the Dependency Graph [15,17,22] contains 1 SCC with 3 less nodes.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                ↳ QDP
                                  ↳ QDPOrderProof
                                    ↳ QDP
                                      ↳ DependencyGraphProof
QDP
                                          ↳ UsableRulesProof
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Succ(vuz2060)) → new_quot7(vuz202, vuz203, vuz204, vuz2050, vuz2060)

The TRS R consists of the following rules:

new_primMinusNatS2(Succ(vuz13000), Succ(vuz1310)) → new_primMinusNatS2(vuz13000, vuz1310)
new_primMinusNatS2(Zero, Succ(vuz1310)) → Zero
new_primMinusNatS2(Zero, Zero) → Zero
new_primMinusNatS2(Succ(vuz13000), Zero) → Succ(vuz13000)

The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [15] we can delete all non-usable rules [17] from R.

↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                ↳ QDP
                                  ↳ QDPOrderProof
                                    ↳ QDP
                                      ↳ DependencyGraphProof
                                        ↳ QDP
                                          ↳ UsableRulesProof
QDP
                                              ↳ QReductionProof
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Succ(vuz2060)) → new_quot7(vuz202, vuz203, vuz204, vuz2050, vuz2060)

R is empty.
The set Q consists of the following terms:

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))

We have to consider all minimal (P,Q,R)-chains.
We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.

new_primMinusNatS2(Zero, Zero)
new_primMinusNatS2(Succ(x0), Zero)
new_primMinusNatS2(Succ(x0), Succ(x1))
new_primMinusNatS2(Zero, Succ(x0))



↳ HASKELL
  ↳ IFR
    ↳ HASKELL
      ↳ BR
        ↳ HASKELL
          ↳ COR
            ↳ HASKELL
              ↳ LetRed
                ↳ HASKELL
                  ↳ NumRed
                    ↳ HASKELL
                      ↳ Narrow
                        ↳ AND
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                          ↳ QDP
                            ↳ DependencyGraphProof
                              ↳ AND
                                ↳ QDP
                                ↳ QDP
                                ↳ QDP
                                  ↳ QDPOrderProof
                                    ↳ QDP
                                      ↳ DependencyGraphProof
                                        ↳ QDP
                                          ↳ UsableRulesProof
                                            ↳ QDP
                                              ↳ QReductionProof
QDP
                                                  ↳ QDPSizeChangeProof
                      ↳ Narrow

Q DP problem:
The TRS P consists of the following rules:

new_quot7(vuz202, vuz203, vuz204, Succ(vuz2050), Succ(vuz2060)) → new_quot7(vuz202, vuz203, vuz204, vuz2050, vuz2060)

R is empty.
Q is empty.
We have to consider all minimal (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:


Haskell To QDPs